home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactif 13 / CAI13.ISO / pc / macqt.dxr / 00001_Main Movie Scripts.ls next >
Encoding:
Text File  |  1997-11-04  |  785 b   |  36 lines

  1. on startMovie
  2.   clearGlobals()
  3.   if the colorDepth <> 16 then
  4.     set the colorDepth to 16
  5.   end if
  6. end
  7.  
  8. on stopMovie
  9.   clearGlobals()
  10.   puppetSound(0)
  11. end
  12.  
  13. on InstallQTRoll
  14.   if rollOver(8) then
  15.     set the visible of sprite 2 to 1
  16.     set the visible of sprite 3 to 0
  17.     set the visible of sprite 4 to 0
  18.   else
  19.     if rollOver(9) then
  20.       set the visible of sprite 2 to 0
  21.       set the visible of sprite 3 to 1
  22.       set the visible of sprite 4 to 0
  23.     else
  24.       if rollOver(10) then
  25.         set the visible of sprite 2 to 0
  26.         set the visible of sprite 3 to 0
  27.         set the visible of sprite 4 to 1
  28.       else
  29.         set the visible of sprite 2 to 0
  30.         set the visible of sprite 3 to 0
  31.         set the visible of sprite 4 to 0
  32.       end if
  33.     end if
  34.   end if
  35. end
  36.